1 using System;
2 using
System.Collections.Generic;
3 using
System.ComponentModel;
4 using
System.Data;
5 using
System.Drawing;
6 using
System.Linq;
7 using
System.Text;
8 using
System.Threading.Tasks;
9 using
System.Windows.Forms;
10
11 namespace
MilkDairyManagementSystemCSharp
12 {
13     
public partial class Home : Form
14     {
15         
public Home()
16         {
17             InitializeComponent();
18         }
19
20         
private void milkDairyToolStripMenuItem_Click(object sender, EventArgs e)
21         {
22             MilkDairy obj =
new MilkDairy();
23             obj.ShowDialog();
24         }
25
26         
private void setFatePriceToolStripMenuItem_Click(object sender, EventArgs e)
27         {
28             SetFatePrice obj1 =
new MilkDairyManagementSystemCSharp.SetFatePrice();
29             obj1.ShowDialog();
30         }
31
32         
private void searchAccountToolStripMenuItem_Click(object sender, EventArgs e)
33         {
34             SearchAccount obj =
new MilkDairyManagementSystemCSharp.SearchAccount();
35             obj.ShowDialog();
36         }
37
38         
private void searchMilkDairyRecordToolStripMenuItem_Click(object sender, EventArgs e)
39         {
40             SearchDairyMilkRecord obj =
new SearchDairyMilkRecord();
41             obj.ShowDialog();
42         }
43
44         
private void newAccountToolStripMenuItem_Click(object sender, EventArgs e)
45         {
46             NewAccount obj =
new MilkDairyManagementSystemCSharp.NewAccount();
47             obj.ShowDialog();
48         }
49
50         
private void exitToolStripMenuItem_Click(object sender, EventArgs e)
51         {
52             
this.Hide();
53             Form1 obj =
new MilkDairyManagementSystemCSharp.Form1();
54             obj.ShowDialog();
55         }
56     }
57 }


Gõ tìm kiếm nhanh...